Get current time in millisecondsΒΆ

Get current time in milliseconds.
import time

milli_sec = int(round(time.time() * 1000))

print(milli_sec)

Output:

1494055960573